home *** CD-ROM | disk | FTP | other *** search
/ Freelog 22 / freelog 22.iso / Prog / Djgpp / GPC2952B.ZIP / doc / gpc / docdemos / getmemfunctiondemo.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-02-09  |  82 b   |  6 lines

  1. program GetMemFunctionDemo;
  2. var p : Pointer;
  3. begin
  4.   p := GetMem (1024)
  5. end.
  6.